EPD Extension Kit for MSP430 LaunchPad
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
EPD_LED.h
Go to the documentation of this file.
1 
34 #ifndef __EPD_LED_H_
35 #define __EPD_LED_H_
36 
38 
39 #define LED_DISABLE 1
40 #define LED_Port P1
41 #define LED_Red_Pin BIT0
42 #define LED_Green_Pin BIT6
43 #define LED_OUT P1OUT
44 #define LED_IN P1IN
45 
46 void LED_init(void);
47 void LED_ON(void);
48 void LED_OFF(void);
49 void LED_Trigger(void);
50 #endif
51 
52 
53